home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / Kludges.subproj / MiscFindPanelClass.h < prev    next >
Encoding:
Text File  |  1994-10-29  |  883 b   |  37 lines

  1. /*
  2.  *  Copyright (c) 1993 Christopher J. Kane.  All rights reserved.
  3.  *
  4.  *  This software is subject to the terms of the MiscKit license
  5.  *  agreement.  Refer to the license document included with the
  6.  *  MiscKit distribution for these terms.
  7.  *
  8.  *  Version: 1.1 (22 October 1993)
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import "MiscFindPanel.h"
  13.  
  14. @interface Application (MiscFindPanelClass)
  15.  
  16. - (Class)MiscFindPanelClass;
  17. - (BOOL)isMiscFindPanelClassLoaded;
  18. - (MiscFindPanel *)findPanel;
  19. - (BOOL)isFindPanelLoaded;
  20.  
  21. - enterSelection:sender;
  22. - findNext:sender;
  23. - findPrevious:sender;
  24. - jumpToSelection:sender;
  25. - orderFrontFindPanel:sender;
  26. - orderFrontRangePanel:sender;
  27.  
  28. @end
  29.  
  30. @interface Object (MiscFindPanelClassDelegateMethods)
  31.  
  32. - (Class)MiscFindPanelClassWasLoaded:(Class)theClass;
  33. - findPanelWillLoad:(Class)theClass;
  34. - (MiscFindPanel *)findPanelDidLoad:(MiscFindPanel *)thePanel;
  35.  
  36. @end
  37.